home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / evolu.dir / 00014_3 sec..ls < prev    next >
Encoding:
Text File  |  1996-03-20  |  318 b   |  22 lines

  1. on enterFrame
  2.   global timerFlag
  3.   if timerFlag = 0 then
  4.     startTimer()
  5.   end if
  6. end
  7.  
  8. on exitFrame
  9.   global timerFlag
  10.   if the timer < (60 * 3) then
  11.     set timerFlag to 1
  12.     go(the frame)
  13.   else
  14.     set timerFlag to 0
  15.     if the frameLabel = "end" then
  16.       go(1)
  17.     else
  18.       go(#next)
  19.     end if
  20.   end if
  21. end
  22.